+1999-10-26 Jonathan Blandford <jrb@redhat.com>
+
+ * src/gdk-pixbuf-loader.h: New Class. Beginning of progrssive
+ loading.
+
1999-10-25 Federico Mena Quintero <federico@redhat.com>
* configure.in (CFLAGS): Patch from Uwe Koloska
typedef struct _GdkPixbufLoaderClass GdkPixbufLoaderClass;
struct _GdkPixbufLoaderClass {
GtkObjectClass parent_class;
-#if 0
- /* If it get's implemented */
+
void (* area_updated) (GdkPixbufLoader *loader,
int x, int y, int width, int height);
-#endif
+ void (* area_prepared) (GdkPixbufLoader *loader,
+ GdkPixbuf *image,
+ int x, int y, int width, int height);
};
\f
w, h, w * 3,
free_buffer, NULL);
}
+
+GdkImage *
+image_load_by_data (void *data, size_t count)
+{
+ return NULL;
+}
typedef struct _GdkPixbufLoaderClass GdkPixbufLoaderClass;
struct _GdkPixbufLoaderClass {
GtkObjectClass parent_class;
-#if 0
- /* If it get's implemented */
+
void (* area_updated) (GdkPixbufLoader *loader,
int x, int y, int width, int height);
-#endif
+ void (* area_prepared) (GdkPixbufLoader *loader,
+ GdkPixbuf *image,
+ int x, int y, int width, int height);
};
\f